home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_gen_particlesystem.cog < prev    next >
Text File  |  1999-11-15  |  410b  |  31 lines

  1. # Jedi Knight Cog Script
  2. #
  3. # 00_PARTICLESYSTEM.COG
  4. #
  5. # Particle System
  6. #
  7. # [KS]
  8. #
  9. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  10.  
  11. symbols
  12.     message    startup
  13.     message    pulse
  14.     
  15.     thing        ghost0
  16.     template    partSystem
  17.     int        dummy        local
  18.     flex        pulsetime=.25
  19.     
  20. end
  21.  
  22. code
  23. startup:
  24.     setpulse(pulsetime);
  25.     return;
  26.  
  27. pulse:
  28.     dummy=CreateThing(partSystem, ghost0);
  29.     return;
  30.     
  31. end